home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2002 January / maximum-cd-2002-01.iso / Files / Mechwarrior 4 Mapping / MW4Editor.exe / content / ABLScripts / StockScripts / Stock_StealBacon.ABL < prev    next >
Encoding:
Text File  |  2001-07-16  |  405 b   |  32 lines

  1. fsm StockStealTheBacon : integer;        
  2.  
  3.     const
  4.         #include_ <content\ABLScripts\mwconst.abi>
  5.  
  6.     type
  7.         #include_ <content\ABLScripts\mwtype.abi>
  8.  
  9. function init;
  10.     code
  11.         SetupScoring_STB;
  12.  
  13.         TeamSetNav(0,ena_The_Hill);
  14.  
  15. endfunction;
  16.  
  17. state startState;
  18.     code
  19.     revealnavpoint(ena_Nav_Center);
  20.     revealnavpoint(ena_The_Hill);
  21.  
  22. endstate;
  23.  
  24.  
  25. state deadState;
  26.     code
  27.  
  28. endstate;
  29.     
  30. endfsm.
  31.  
  32.